home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-04 / xlib03.zip / XPOINT.H < prev    next >
Text File  |  1993-04-05  |  1KB  |  45 lines

  1. /*-----------------------------------------------------------------------
  2. ;
  3. ; XPOINT - header file
  4. ;
  5. ;
  6. ;
  7. ; ****** XLIB - Mode X graphics library                ****************
  8. ; ******                                               ****************
  9. ; ****** Written By Themie Gouthas                     ****************
  10. ; ****** Aeronautical Research Laboratory              ****************
  11. ; ****** Defence Science and Technology Organisation   ****************
  12. ; ****** Australia                                     ****************
  13. ;
  14. ; egg@dstos3.dsto.gov.au
  15. ; teg@bart.dsto.gov.au
  16. ;
  17. ;  Terminology & notes:
  18. ;         VRAM ==   Video RAM
  19. ;         SRAM ==   System RAM
  20. ;         X coordinates are in pixels unless explicitly stated
  21. ;
  22. ;-----------------------------------------------------------------------*/
  23.  
  24. #ifndef _XPOINT_H_
  25. #define _XPOINT_H_
  26.  
  27.  
  28. /* FUNCTIONS =========================================================== */
  29.  
  30. extern void x_put_pix(           /* Draw a pixel on the screen */
  31.              WORD X,
  32.              WORD Y,
  33.              WORD PageOffset,
  34.              WORD Color);
  35.  
  36. extern WORD x_get_pix(          /* Read a pixel from the screen */
  37.              WORD X,
  38.              WORD Y,
  39.          WORD PageBase);
  40.  
  41.  
  42. #endif
  43.  
  44.  
  45.